home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CICA 1995 August
/
CICA - The Ultimate Collection of Shareware for Windows (Disc 2) (August 1995).iso
/
disc2
/
nt
/
source.exe
/
POSIX
/
SH
/
STD
/
H
/
SYS
/
TIMES.H
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-07-13
|
355 b
|
29 lines
/*
* sys/times.h: POSIX times()
*/
#if ! _TIMES_H
#define _TIMES_H 1
#include <time.h> /* defines CLK_TCK */
#if __STDC__
#define ARGS(args) args
#else
#define ARGS(args) ()
#endif
struct tms {
clock_t tms_utime, tms_stime;
clock_t tms_cutime, tms_cstime;
};
#if _V7
#define times times_
#endif
clock_t times ARGS((struct tms *tmsp));
#endif